home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / linux / prefetch.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  2KB  |  71 lines

  1. /*
  2.  *  Generic cache management functions. Everything is arch-specific,  
  3.  *  but this header exists to make sure the defines/functions can be
  4.  *  used in a generic way.
  5.  *
  6.  *  2000-11-13  Arjan van de Ven   <arjan@fenrus.demon.nl>
  7.  *
  8.  */
  9.  
  10. #ifndef _LINUX_PREFETCH_H
  11. #define _LINUX_PREFETCH_H
  12.  
  13. #include <linux/compiler.h>
  14. #include <linux/types.h>
  15. #include <asm/processor.h>
  16. #include <asm/cache.h>
  17.  
  18. /*
  19.     prefetch(x) attempts to pre-emptively get the memory pointed to
  20.     by address "x" into the CPU L1 cache. 
  21.     prefetch(x) should not cause any kind of exception, prefetch(0) is
  22.     specifically ok.
  23.  
  24.     prefetch() should be defined by the architecture, if not, the 
  25.     #define below provides a no-op define.    
  26.     
  27.     There are 3 prefetch() macros:
  28.     
  29.     prefetch(x)      - prefetches the cacheline at "x" for read
  30.     prefetchw(x)    - prefetches the cacheline at "x" for write
  31.     spin_lock_prefetch(x) - prefectches the spinlock *x for taking
  32.     
  33.     there is also PREFETCH_STRIDE which is the architecure-prefered 
  34.     "lookahead" size for prefetching streamed operations.
  35.     
  36. */
  37.  
  38. /*
  39.  *    These cannot be do{}while(0) macros. See the mental gymnastics in
  40.  *    the loop macro.
  41.  */
  42.  
  43. #ifndef ARCH_HAS_PREFETCH
  44. static inline void prefetch(const void *x) {;}
  45. #endif
  46.  
  47. #ifndef ARCH_HAS_PREFETCHW
  48. static inline void prefetchw(const void *x) {;}
  49. #endif
  50.  
  51. #ifndef ARCH_HAS_SPINLOCK_PREFETCH
  52. #define spin_lock_prefetch(x) prefetchw(x)
  53. #endif
  54.  
  55. #ifndef PREFETCH_STRIDE
  56. #define PREFETCH_STRIDE (4*L1_CACHE_BYTES)
  57. #endif
  58.  
  59. static inline void prefetch_range(void *addr, size_t len)
  60. {
  61. #ifdef ARCH_HAS_PREFETCH
  62.     char *cp;
  63.     char *end = __cast__(char *) addr + len;
  64.  
  65.     for (cp = __cast__(char *) addr; cp < end; cp += PREFETCH_STRIDE)
  66.         prefetch(cp);
  67. #endif
  68. }
  69.  
  70. #endif
  71.